home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Games 1996 July
/
Amiga Games 1996 #7.iso
/
userbox
/
publicdomain
/
easycalc
/
easyrexx
/
unlock.erex
< prev
next >
Wrap
Text File
|
1996-03-31
|
260b
|
19 lines
/* EasyCalc 2.0 Arexx Script */
options results
'getresponse "This script will unlock all cells." "_Begin"'
getsheetwidth
maxx = result
getsheetheight
maxy = result
do x = 0 for maxx+1
'showmessage' x
do y = 0 to maxy+1
'setlock' x y 0
end
end